vendor/golang.org/x/net/http2/hpack.node.children (field)

10 uses

	vendor/golang.org/x/net/http2/hpack (current package)
		huffman.go#L62: 			n = n.children[idx]
		huffman.go#L66: 			if n.children == nil {
		huffman.go#L80: 		n = n.children[byte(cur<<(8-cbits))]
		huffman.go#L84: 		if n.children != nil || n.codeLen > cbits {
		huffman.go#L117: 	children *[256]*node
		huffman.go#L125: 	return &node{children: new([256]*node)}
		huffman.go#L153: 			if cur.children[i] == nil {
		huffman.go#L154: 				cur.children[i] = newInternalNode()
		huffman.go#L156: 			cur = cur.children[i]
		huffman.go#L164: 			cur.children[i] = &leaves[sym]